/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-lavender: #8B5CF6;
    --deep-lavender: #7C3AED;
    --blush-pink: #F472B6;
    --teal: #14B8A6;
    --gold: #F59E0B;
    --gold-shimmer: #FCD34D;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --gray: #64748B;
    --dark-gray: #334155;
    --black: #0F172A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-lavender), var(--blush-pink));
    --gradient-secondary: linear-gradient(135deg, var(--teal), var(--gold));
    --gradient-dark: linear-gradient(135deg, var(--deep-lavender), var(--dark-gray));
    
    /* Typography */
    --font-primary: 'Quicksand', sans-serif;
    --font-secondary: 'Nunito', sans-serif;
    --font-accent: 'Josefin Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --white: #0F172A;
    --light-gray: #1E293B;
    --gray: #94A3B8;
    --dark-gray: #F1F5F9;
    --black: #FFFFFF;
    
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    transition: var(--transition-smooth);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.dancing-figure {
    width: 80px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.figure-part {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    animation: dance 2s infinite ease-in-out;
}

.head {
    width: 20px;
    height: 20px;
    top: 0;
    left: 30px;
    animation-delay: 0s;
}

.body {
    width: 8px;
    height: 40px;
    top: 25px;
    left: 36px;
    border-radius: 4px;
    animation-delay: 0.2s;
}

.arm-left, .arm-right {
    width: 6px;
    height: 25px;
    top: 30px;
    border-radius: 3px;
}

.arm-left {
    left: 20px;
    animation-delay: 0.4s;
}

.arm-right {
    right: 20px;
    animation-delay: 0.6s;
}

.leg-left, .leg-right {
    width: 6px;
    height: 30px;
    top: 60px;
    border-radius: 3px;
}

.leg-left {
    left: 32px;
    animation-delay: 0.8s;
}

.leg-right {
    right: 32px;
    animation-delay: 1s;
}

@keyframes dance {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

.preloader-text {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
    /* color: var(--primary-lavender); */
    margin-bottom: 0.25rem;
}

.nav-logo .subtitle {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    background: var(--glass-bg);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: var(--transition-smooth);
}

/* Hero Section Enhanced with 3D Effects */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.energy-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
    animation: orbFloat 8s infinite ease-in-out;
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.orb-4 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) translateX(-15px) scale(0.9);
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-40px) translateX(10px) scale(1.05);
        opacity: 0.9;
    }
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: wave 3s infinite ease-in-out;
    z-index: 2;
}

@keyframes wave {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-title-container {
    position: relative;
    margin-bottom: 2rem;
    transform-style: preserve-3d;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    transform-style: preserve-3d;
    will-change: transform;
}

.title-line {
    display: block;
    position: relative;
    transform: translateZ(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.title-line:hover {
    transform: translateZ(20px) scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--blush-pink), var(--gold), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateZ(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.title-line:hover::before {
    opacity: 1;
    transform: translateZ(10px);
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: titleGlow 4s infinite ease-in-out;
    z-index: -1;
    will-change: transform, opacity;
}

@keyframes titleGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    transform: translateZ(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-subtitle:hover {
    transform: translateZ(10px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    transform-style: preserve-3d;
}

.cta-btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    background: transparent;
    will-change: transform;
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--blush-pink), var(--primary-lavender));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) translateZ(20px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.cta-btn.primary:active {
    transform: translateY(-2px) translateZ(10px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.35);
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: left;
}

.cta-btn:hover .btn-glow {
    left: 100%;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

.cta-btn:hover .btn-particles::before {
    animation: particleFloat 1s ease-out;
    opacity: 1;
}

.cta-btn:hover .btn-particles::after {
    animation: particleFloat 1s ease-out 0.2s;
    opacity: 1;
}

@keyframes particleFloat {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(calc(-50% + var(--x, 20px)), calc(-50% + var(--y, -20px))) scale(1);
        opacity: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    margin: 0 auto 0.5rem;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--white);
}

.scroll-text {
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    transform-style: preserve-3d;
}

.floating-dancer {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 150px;
    animation: dancerFloat 6s infinite ease-in-out;
    will-change: transform;
}

.dancer-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.dancer-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: headBob 2s infinite ease-in-out;
    will-change: transform;
}

.dancer-torso {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    animation: torsoSway 3s infinite ease-in-out;
    will-change: transform;
}

.dancer-arms {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
}

.dancer-arm {
    position: absolute;
    width: 6px;
    height: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    transform-origin: top center;
    will-change: transform;
}

.dancer-arm.left {
    left: -30px;
    animation: armSwingLeft 2.5s infinite ease-in-out;
}

.dancer-arm.right {
    right: -30px;
    animation: armSwingRight 2.5s infinite ease-in-out;
}

.dancer-legs {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
}

.dancer-leg {
    position: absolute;
    width: 6px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    transform-origin: top center;
    will-change: transform;
}

.dancer-leg.left {
    left: -15px;
    animation: legSwingLeft 2s infinite ease-in-out;
}

.dancer-leg.right {
    right: -15px;
    animation: legSwingRight 2s infinite ease-in-out;
}

@keyframes dancerFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    25% { transform: translateY(-20px) rotateY(5deg); }
    50% { transform: translateY(-10px) rotateY(-5deg); }
    75% { transform: translateY(-30px) rotateY(3deg); }
}

@keyframes headBob {
    0%, 100% { transform: translateX(-50%) rotateZ(0deg); }
    50% { transform: translateX(-50%) rotateZ(5deg); }
}

@keyframes torsoSway {
    0%, 100% { transform: translateX(-50%) rotateZ(0deg); }
    50% { transform: translateX(-50%) rotateZ(3deg); }
}

@keyframes armSwingLeft {
    0%, 100% { transform: rotateZ(-30deg); }
    50% { transform: rotateZ(30deg); }
}

@keyframes armSwingRight {
    0%, 100% { transform: rotateZ(30deg); }
    50% { transform: rotateZ(-30deg); }
}

@keyframes legSwingLeft {
    0%, 100% { transform: rotateZ(-15deg); }
    50% { transform: rotateZ(15deg); }
}

@keyframes legSwingRight {
    0%, 100% { transform: rotateZ(15deg); }
    50% { transform: rotateZ(-15deg); }
}

.floating-music-notes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: noteFloat 8s infinite ease-in-out;
    will-change: transform, opacity;
}

.note-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.note-2 {
    top: 25%;
    right: 20%;
    animation-delay: 2s;
}

.note-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.note-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes noteFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-40px) translateX(30px) rotate(90deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) translateX(-20px) rotate(180deg);
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-50px) translateX(15px) rotate(270deg);
        opacity: 1;
    }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-lavender);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    font-weight: 300;
}

/* Energy Vibes Section */
.energy-vibes-section {
    background: var(--light-gray);
}

.emotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.emotion-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.emotion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-large);
}

.emotion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.emotion-card:hover .emotion-icon {
    transform: scale(1.1) rotate(5deg);
}

.emotion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.emotion-card p {
    color: var(--gray);
    font-weight: 300;
}

.emotion-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.emotion-card:hover .emotion-glow {
    opacity: 0.1;
}

.emotion-card.selected {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-large);
}

.emotion-content {
    max-width: 1200px;
    margin: 4rem auto 0;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.emotion-header {
    text-align: center;
    margin-bottom: 2rem;
}

.emotion-header h3 {
    font-size: 2rem;
    color: var(--primary-lavender);
    margin-bottom: 1rem;
}

.emotion-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.emotion-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.emotion-video-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.emotion-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.emotion-video-card .video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--gradient-secondary);
    overflow: hidden;
}

.emotion-video-card .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.emotion-video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.emotion-video-card .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.emotion-video-card:hover .video-overlay {
    opacity: 1;
}

.emotion-video-card .play-button {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-lavender);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.emotion-video-card .play-button:hover {
    transform: scale(1.1);
    background: var(--primary-lavender);
    color: var(--white);
}

.emotion-video-card .video-info {
    padding: 1.5rem;
}

.emotion-video-card .video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.emotion-video-card .duration {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Whispers of Healing Section */
.whispers-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.whispers-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 400px;
}

.whisper-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.whisper-card.active {
    opacity: 1;
}

.dancer-silhouette {
    width: 200px;
    height: 200px;
    margin-right: 3rem;
}

.silhouette-animation {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 50%;
    animation: silhouetteDance 3s infinite ease-in-out;
}

@keyframes silhouetteDance {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(0.9) rotate(-5deg); }
    75% { transform: scale(1.05) rotate(3deg); }
}

.whisper-text {
    flex: 1;
}

.typewriter-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    animation: typewriter 3s ease-out forwards;
}

@keyframes typewriter {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whisper-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.whisper-nav {
    background: var(--white);
    color: var(--primary-lavender);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whisper-nav:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--black);
    background-color: #0F172A;
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.col {
    display: flex;
    flex-direction: column;
}

.footlogo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    background: #000; /* black background as requested */
    border: 2px solid #fff;
    padding: 4px;
    box-sizing: border-box;
}

.footercontent {
    margin-bottom: 1rem;
}

.footerheading {
    color: #d1e6d9;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footerpara {
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-side-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-side-col h3 {
    color: #d1e6d9;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-side-col ul {
    list-style: none;
    padding: 0;
}

.footer-side-col li {
    margin-bottom: 0.5rem;
}

.footer-side-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-side-col a:hover {
    color: #e2ebee;
}

.social-menu ul {
    display: flex;
    gap: 1rem;
}

.social-menu li {
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-menu li:hover {
    background: #c8e6d3;
    transform: translateY(-2px);
}

.social-menu i {
    color: #d9ebdf;
    font-size: 1.2rem;
}

.social-menu li:hover i {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .emotion-grid {
        grid-template-columns: 1fr;
    }
    
    .emotion-videos {
        grid-template-columns: 1fr;
    }
    
    .whispers-container {
        height: 300px;
    }
    
    .dancer-silhouette {
        width: 100px;
        height: 100px;
        margin-right: 1rem;
    }
    
    .typewriter-text {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .floating-dancer {
        width: 60px;
        height: 90px;
        top: 15%;
        right: 5%;
    }
    
    .note {
        font-size: 1.5rem;
    }
    
    .orb-1, .orb-2, .orb-3, .orb-4 {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .whispers-container {
        height: 200px;
    }
    
    .floating-dancer {
        display: none;
    }
    
    .floating-music-notes {
        display: none;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-lavender);
}

.emotion-child-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto 0 auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.emotion-child-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    padding: 1.5rem 1rem 1rem 1rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.emotion-child-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-large);
}

.child-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-lavender);
    margin-bottom: 1rem;
    text-align: center;
}

.child-card-video iframe {
    border-radius: 10px;
    width: 100%;
    height: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .emotion-child-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .emotion-child-card {
        width: 90%;
        max-width: 350px;
    }
}

/* Video Fallback Styles */
.video-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-fallback:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.animated-figure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.animated-figure {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.figure-emoji {
    font-size: 2.5rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.figure-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.figure-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

.figure-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.figure-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Animation keyframes for fallback elements */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-30px) translateX(15px);
        opacity: 0.9;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-10px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-5px); 
    }
}

/* Enhanced Button Particle Effects */
.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Emotion-specific animations */
.gentle-flow .figure-emoji {
    animation: gentle-flow 4s ease-in-out infinite;
}

.snow-dance .figure-emoji {
    animation: snow-dance 3s ease-in-out infinite;
}

.power-move .figure-emoji {
    animation: power-move 2s ease-in-out infinite;
}

.gentle-sway .figure-emoji {
    animation: gentle-sway 5s ease-in-out infinite;
}

.nature-flow .figure-emoji {
    animation: nature-flow 4s ease-in-out infinite;
}

.joy-bounce .figure-emoji {
    animation: joy-bounce 2s ease-in-out infinite;
}

@keyframes gentle-flow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}

@keyframes snow-dance {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes power-move {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(90deg); }
    50% { transform: scale(1.1) rotate(180deg); }
    75% { transform: scale(1.2) rotate(270deg); }
}

@keyframes gentle-sway {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    25% { transform: translateX(-8px) rotate(-5deg); }
    50% { transform: translateX(0px) rotate(0deg); }
    75% { transform: translateX(8px) rotate(5deg); }
}

@keyframes nature-flow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(15deg); }
    66% { transform: translateY(-4px) rotate(-15deg); }
}

@keyframes joy-bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-12px) scale(1.1); }
    50% { transform: translateY(-20px) scale(1.2); }
    75% { transform: translateY(-12px) scale(1.1); }
}

/* Make child cards clickable */
.emotion-child-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.emotion-child-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.emotion-child-card:hover .video-fallback {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Dance Therapy Techniques Section */
.dance-therapy-section {
    background: var(--light-gray);
    padding: 6rem 0;
    perspective: 1000px;
    overflow: hidden;
}

.dance-therapy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s infinite linear;
    pointer-events: none;
}

@keyframes backgroundFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.therapy-techniques-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    transform-style: preserve-3d;
}

.technique-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(0deg);
    opacity: 0;
    animation: cardFloatIn 0.8s ease-out forwards;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 200px;
}

.technique-card:nth-child(1) { animation-delay: 0.1s; }
.technique-card:nth-child(2) { animation-delay: 0.2s; }
.technique-card:nth-child(3) { animation-delay: 0.3s; }
.technique-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardFloatIn {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(-20deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.technique-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

.technique-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left;
}

.technique-card:hover::before {
    transform: scaleX(1);
}

.technique-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(244, 114, 182, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.technique-card:hover::after {
    opacity: 1;
}

.technique-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    flex-shrink: 0;
}

.technique-card:hover .technique-icon {
    transform: scale(1.2) rotateY(15deg) rotateZ(5deg);
    box-shadow: 
        0 15px 35px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.technique-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    animation: iconPulse 2s infinite;
    z-index: -1;
}

@keyframes iconPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

.technique-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.technique-content h3 {
    font-size: 1.8rem;
    color: var(--primary-lavender);
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateZ(20px);
    margin: 0;
}

.technique-card:hover .technique-content h3 {
    transform: translateZ(30px) scale(1.05);
    text-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.technique-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
    transition: all 0.3s ease;
    transform: translateZ(10px);
    margin: 0;
}

.technique-card:hover .technique-content p {
    transform: translateZ(15px);
    color: var(--dark-gray);
}

.technique-benefit {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    transform: translateZ(25px);
}

.benefit-tag {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.benefit-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.benefit-tag:hover::before {
    left: 100%;
}

.benefit-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(20, 184, 166, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.technique-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}

.youtube-btn {
    background: #FF0000;
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateZ(20px);
}

.youtube-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.youtube-btn:hover::before {
    left: 100%;
}

.youtube-btn:hover {
    transform: translateY(-3px) scale(1.05) translateZ(25px);
    box-shadow: 
        0 10px 25px rgba(255, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.youtube-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.youtube-btn:hover i {
    transform: scale(1.2);
}

.therapy-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0 2rem;
    transform-style: preserve-3d;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0;
    animation: textFadeIn 1s ease-out 0.8s forwards;
    transform: translateZ(20px);
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) translateZ(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(20px);
    }
}

.cta-therapy-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    opacity: 0;
    animation: buttonFloatIn 1s ease-out 1s forwards;
}

@keyframes buttonFloatIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-20deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.cta-therapy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-therapy-btn:hover::before {
    left: 100%;
}

.cta-therapy-btn:hover {
    transform: translateY(-5px) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cta-therapy-btn i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(10px);
}

.cta-therapy-btn:hover i {
    transform: translateX(8px) translateZ(15px) rotateY(15deg);
}

/* Floating particles for 3D effect */
.technique-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 4px;
    height: 4px;
    background: var(--primary-lavender);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 3s infinite ease-in-out;
}

.technique-card:nth-child(2)::before {
    animation-delay: 0.5s;
    background: var(--blush-pink);
}

.technique-card:nth-child(3)::before {
    animation-delay: 1s;
    background: var(--teal);
}

.technique-card:nth-child(4)::before {
    animation-delay: 1.5s;
    background: var(--gold);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* Responsive adjustments for landscape cards */
@media (max-width: 768px) {
    .therapy-techniques-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .technique-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .technique-content {
        order: 2;
    }
    
    .technique-icon {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .technique-actions {
        order: 3;
        align-items: center;
        margin-top: 1rem;
    }
    
    .technique-content h3 {
        font-size: 1.5rem;
    }
    
    .technique-content p {
        font-size: 0.95rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-therapy-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .technique-card {
        padding: 1.25rem;
    }
    
    .technique-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .youtube-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
} 